home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / misc / m2_part1.lha / modula / examples / src / helloworld.mod < prev    next >
Encoding:
Text File  |  1994-07-30  |  89 b   |  7 lines

  1. MODULE helloworld ;
  2.  
  3. IMPORT StdIO ;
  4.  
  5. BEGIN StdIO.printf("Hello world\n")
  6. END helloworld.
  7.